home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Complete Linux
/
Complete Linux.iso
/
docs
/
system
/
mail
/
transpor
/
ifmail23.z
/
ifmail23
/
ifmail
/
iflib
/
atoul.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1993-12-11
|
196 b
|
14 lines
#include <stdio.h>
#include <string.h>
unsigned long atoul(char*);
unsigned long atoul(str)
char *str;
{
unsigned long x;
if (sscanf(str,"%lu",&x) == 1)
return x;
else return 0xffffffff;
}